home *** CD-ROM | disk | FTP | other *** search
- package
- {
- public class DressupTheme
- {
-
-
- public var Description:String;
-
- public var ThemePartner:Partner = null;
-
- public var HintMessage:String;
-
- public var TargetAttributes:Array;
-
- public var Background:String;
-
- public var SampleParts:Array;
-
- public var Title:String;
-
- public function DressupTheme()
- {
- TargetAttributes = new Array();
- SampleParts = new Array();
- ThemePartner = null;
- super();
- }
-
- public function clone() : *
- {
- var _loc1_:DressupTheme = null;
- _loc1_ = new DressupTheme();
- _loc1_.Title = Title;
- _loc1_.HintMessage = HintMessage;
- _loc1_.TargetAttributes = TargetAttributes;
- _loc1_.Background = Background;
- _loc1_.SampleParts = SampleParts;
- _loc1_.Description = Description;
- _loc1_.ThemePartner = ThemePartner;
- return _loc1_;
- }
- }
- }
-